Previous Book Contents Book Index Next

Inside Macintosh: /
QuickDraw 3D RAVE / QuickDraw 3D RAVE Reference
Data Structures


Macintosh Device and Clip Structures

QuickDraw 3D RAVE supports two types of devices and one type of clipping on the Macintosh Operating System. The available devices and clipping are defined by unions of type TQAPlatformDevice and TQAPlatformClip.

typedef union TQAPlatformDevice {
   TQADeviceMemory            memoryDevice;
   GDHandle                   gDevice;
} TQAPlatformDevice;
Field Description
memoryDevice
A memory device data structure.
gDevice
A handle to a graphics device (of type GDevice).
typedef union TQAPlatformClip {
   RgnHandle                  clipRgn;
} TQAPlatformClip;
Field Description
clipRgn
A handle to a clipping region.

Previous Book Contents Book Index Next

© Apple Computer, Inc.
28 AUG 1996